feat(compare): add MiniMax M3 to compare model registry#451
Closed
functionstackx wants to merge 1 commit into
Closed
feat(compare): add MiniMax M3 to compare model registry#451functionstackx wants to merge 1 commit into
functionstackx wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
0c6149f to
fd63b9c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
MiniMax M3 was added to the dashboard model dropdown (#444, ordering in #450) but never to
COMPARE_MODEL_SLUGSinpackages/app/src/lib/compare-slug.ts— the hand-maintained registry that drives /compare, /compare-per-dollar, the sitemap, and their OG images. So M3 was absent from all compare surfaces. (/about needed no change — it derives fromDB_MODEL_TO_DISPLAYand already lists MiniMax-M3.)Changes
compare-slug.ts: addminimax-m3entry (displayName: 'MiniMax-M3',dbKeys: ['minimaxm3'], labelMiniMax M3 428B), placed beforeminimax-m27so the newer flagship leads within the family, mirroring DeepSeek V4 Pro before R1. The bareminimaxalias stays onminimax-m27for backward compat (same pattern asdeepseek→deepseek-r1). M3 is a distinct 428B architecture, not an M2 point release, so it gets its own slug rather than joining the M2 dbKey group.compare-ssr.ts: add'MiniMax-M3'toKNOWN_MODELSso?g_model=URL overrides validate.compare-slug.test.ts: new tests for parsingminimax-m3-h100-vs-h200and slug/alias resolution; the existing round-trip suites cover the new entry automatically (34 tests pass).docs/adding-entities.md: add the compare-slug registry andKNOWN_MODELSsteps to the Adding a New Model checklist — they weren't listed, which is why M3 fell through.Notes
minimaxm3benchmark rows (verified against the live availability API), so the /compare index won't render an M3 section until a second GPU has data —getComparablePairsByModelSlugrequires both sides of a pair. The section, sitemap URLs, and OG images appear automatically once that happens; direct/compare/minimax-m3-*URLs render the standard empty state until then.🤖 Generated with Claude Code
Note
Low Risk
Registry and documentation-only changes to compare URL/metadata; no auth, ingest, or inference paths.
Overview
MiniMax M3 is wired into the hand-maintained compare registry so it can appear on
/compare,/compare-per-dollar, sitemaps, and OG images—surfaces that do not followMODEL_CONFIGfrom the dashboard.A new
minimax-m3entry inCOMPARE_MODEL_SLUGSusesdbKeys: ['minimaxm3'], sits beforeminimax-m27(newer flagship first), and keeps the bareminimaxalias on the M2 series for backward compatibility.MiniMax-M3is added toKNOWN_MODELSso?g_model=overrides validate on compare SSR pages.Tests cover parsing
minimax-m3-*URLs and slug resolution.docs/adding-entities.mdnow listscompare-slug.tsandcompare-ssr.tsin the “add a model” checklist so future models don’t miss compare registration.Reviewed by Cursor Bugbot for commit fd63b9c. Bugbot is set up for automated code reviews on this repo. Configure here.